@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

/* universal style */
body
{
    font-family: "Jost";
}
a
{
    text-decoration: none;
    color: inherit;
}


/* main-section left bg */
.dashboard::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/body-bg-left.png);
    background-repeat: no-repeat;
    width: 350px;
    height: 100%;
    z-index: 0;
}

/* main-section right bg */
.dashboard::after
{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/body-bg-right.png);
    background-repeat: no-repeat;
    width: 315px;
    height: 100%;
    z-index: 0;
}

/* left section */
.dashboard-img
{
    background-image: url(../images/left-bg.png);
    min-height: 100vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 0px 60px;
}
.dashboard-inner
{
    position: relative;
}
.dashboard-inner img {
	width: 100%;
}
/* .img-1, .img-2, .img-3, .img-4, .img-5, .img-6
{
    width: 100%;
} */
.img-2, .img-3, .img-4, .img-5, .img-6
{
    position: absolute;
    z-index: 1;
}
.img-2
{
    top: 30px;
    left: -120px;
    z-index: 1;
}
.img-3 {
	top: 140px;
	right: 0px;
}
.img-4
{
    top: 300px;
    left: -120px;
}
.img-5
{
    bottom: 40%;
    right: 0;
    height: 100px;
}
.img-6
{
    bottom: 0px;
    left: -120px;
}

.wrapper {
	padding: 0px 0 0 0;
	position: relative;
	background-color:transparent;
}

/* heading */
.signup-heading h2
{

    font-size: 42px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    text-transform: uppercase;
      
}
.signup-heading p
{
    
    font-size: 18px;
    font-family: "Roboto";
    color: rgb(12, 16, 71);
      
}

/* google button */
.google-signup
{
    width: 100%;
    height: 60px;
    margin-top: 30px;
    
}
.google-signup button
{

    border: solid 2px rgb(237, 237, 237);
    border-radius: 32px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 70px 0px rgba(0, 0, 0, 0.07);
    width: inherit;
    height: inherit;
    font-weight: bold;
}
.google-signup button img
{
    width: 22px;
    transition: 0.5s ease;
    margin-right: 10px;
}
.google-signup:hover button img
{
    transform: rotate(360deg);
}
.email-signup
{
    margin-top: 30px;
    text-align: center;
    width: 100%;
    position: relative;
}
.email-signup span
{

    font-size: 16px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    z-index: 1;
    position: relative;
    width: max-content;
    background-color: rgb(255, 255, 255);
    padding: 0 20px;
      
}
.email-signup::after
{
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 50%;
    height: 1px;
    z-index: 0;
    background-color: rgb(235, 235, 235);
}

